home *** CD-ROM | disk | FTP | other *** search
/ Champak 128 / Vol 128 (Damaged).iso / games / scooby_d.swf / scripts / __Packages / com / ndimedia / math / alg / Point.as
Encoding:
Text File  |  2011-03-26  |  254 b   |  19 lines

  1. class com.ndimedia.math.alg.Point
  2. {
  3.    var _x;
  4.    var _y;
  5.    function Point(x, y)
  6.    {
  7.       this._x = x;
  8.       this._y = y;
  9.    }
  10.    function get x()
  11.    {
  12.       return this._x;
  13.    }
  14.    function get y()
  15.    {
  16.       return this._y;
  17.    }
  18. }
  19.